home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / cli / system2.arc / KILL.XSL < prev    next >
Text File  |  1985-11-20  |  234b  |  18 lines

  1.  
  2. * KILL.XSL
  3. * System2 XSL file
  4. * Delete with check
  5.  
  6. echo "Are you sure that you wish to delete "%1"?"
  7. echo
  8. input %sure "Type y or n>"
  9.  
  10. if equal %sure "Y"
  11.   rm %1
  12. else
  13.   echo "Delete aborted"
  14.   echo
  15. endif
  16.  
  17. unset %sure
  18.